
body {
    padding-top: 90px;
}
.navbar {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
    height: auto;
    max-width: 100%;
    max-height: 120px;
}
@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 100px;
    }
    
}
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 80px;
    }
}

.navbar-nav .nav-link {
    color: black;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 15px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color:rgb(174, 221, 92) !important;
    text-decoration: underline;
    text-underline-offset: 7px;
}
.navbar-toggler {
    border: none;
}
/* D:\nga\css\styles.css में जोड़ें (सबसे नीचे) */

/* Hamburger icon fix */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar dropdown flicker fix */
.collapse.navbar-collapse:not(.show) {
    display: none !important;
}

@media (min-width: 992px) { /* Adjust this breakpoint if your navbar collapses at a different size */
    .collapse.navbar-collapse:not(.show) {
        display: flex !important; /* On desktop, always show the navbar */
    }
}
@media (max-width: 991px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
    }
    
    .navbar-brand {
        order: 1;
        flex: 1;
        text-align: left;
    }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}
/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between WhatsApp and Back to Top */
    z-index: 1000;
}

/* WhatsApp Button */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 2.5rem;
    color: green;
}

/* Back to Top Button */
.back-to-top {
    background: black;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none; /* Initially hidden */
}

/* Responsive Adjustment */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    .whatsapp-float i {
        font-size: 2rem;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


.carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: contain;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {

    /* Reducing space between carousel and next section */
    section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        margin-top: -10px !important; /* Reduce margin */
    }

    /* Adjust margin between sections */
    .text-center {
        margin-top: -20px !important; /* Reduce the margin */
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .py-5 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
}

/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

/* Heading Styles */
h2 {
    font-size: 2.5rem;
    color: #222;
    letter-spacing: 1px;
}

p.lead {
    font-size: 1.2rem;
    color: #555;
}

/* Custom Button */
.custom-btn {
    background-color: rgb(174, 221, 92);
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border: none;
}

.custom-btn:hover {
    background-color: #388e3c;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
img.shadow {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
/* Container Styling */
.google-reviews-widget {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #f7f7f7;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Review Item Styling */
.google-reviews-widget .review-item {
margin-bottom: 20px;
border-bottom: 1px solid #ddd;
padding-bottom: 20px;
}

.google-reviews-widget .review-item:last-child {
border-bottom: none;
}

/* Review Text Styling */
.google-reviews-widget .review-text {
font-size: 16px;
color: #555;
line-height: 1.5;
}

/* Reviewer Name Styling */
.google-reviews-widget .reviewer-name {
font-weight: bold;
color: #333;
}
/* Footer Styling */
footer {
background-color: #212529;
}

footer h5 {
font-size: 18px;
font-weight: bold;
letter-spacing: 1px;
margin-bottom: 20px;
}

footer p {
font-size: 14px;
line-height: 1.6;
}

footer a {
text-decoration: none;
}

footer a:hover {
color: #007bff;
}

footer .list-unstyled li {
margin-bottom: 10px;
}

footer .bi {
margin-right: 10px;
}

/* Footer Bottom Section Styling */
footer .border-top {
border-top: 1px solid #333;
}

footer .text-md-start {
text-align: left;
}

footer .text-md-end {
text-align: right;
}

/* Add space between social media icons */
footer .mx-2 {
margin-left: 8px;
margin-right: 8px;
}

/* Make sure footer content doesn't get too wide on small screens */
footer .container {
padding-right: 20px;
padding-left: 20px;
}

.btn.custom-btn {
background-color: rgb(174, 221, 92) !important;
color: white !important;
padding: 12px 30px;
font-size: 1rem;
border-radius: 30px;
text-transform: uppercase;
font-weight: bold;
transition: all 0.3s ease-in-out;
border: none;
}

.btn.custom-btn:hover {
background-color: #388e3c !important;
color: white !important;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


/* Ensure gap between header and contact section */
.contact-section {
margin-top: 20px; /* Default for mobile */
}

@media (min-width: 768px) {
.contact-section {
margin-top: 50px; /* Larger gap for desktops */
}
}

/* General Styling */
body {
font-family: 'Montserrat', sans-serif;
padding-top: 90px;
}

/* Navbar */
.navbar {
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
max-height: 100px;
}

.navbar-nav .nav-link {
color: black;
font-weight: bold;
text-transform: uppercase;
margin: 0 15px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
color: rgb(174, 221, 92) !important;
text-decoration: underline;
}

/* Contact Form */
.contact-section {
background-color: #f8f9fa;
}

.contact-section h2 {
font-size: 2rem;
color: #222;
}

.contact-section .form-control {
border-radius: 5px;
}

/* Footer */
footer {
background-color: #212529;
text-align: center;
}

footer p {
margin: 0;
font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
.navbar-brand img {
max-height: 80px;
}
}

/* Make the Google Map responsive */
.ratio iframe {
width: 100%;
height: 100%;
}

/* Target images only inside the custom-service-imgs section */
.custom-service-imgs img {
    height: 550px; /* increased height for desktop */
    
    width: 100%;
}

/* Slightly reduced height on tablets */
@media (max-width: 991px) {
    .custom-service-imgs img {
        height: 280px;
    }
}

/* Reduced a bit more on mobile */
@media (max-width: 576px) {
    .custom-service-imgs img {
        height: 240px;
    }
}

.carousel-control-next {opacity:1;}
.carousel-control-next .fa {padding:10px;background:#fff;color:#ffbe00;font-size:20px;transition:0.3s ease}
.carousel-control-next .fa:hover {background:#ffbe00;color:#fff;opacity:1}


.carousel-control-prev {opacity:1;}
.carousel-control-prev .fa {padding:10px;background:#fff;color:#ffbe00;font-size:20px;transition:0.3s ease}
.carousel-control-prev .fa:hover {background:#ffbe00;color:#fff;opacity:1}

@media (max-width:480px) {
    .carousel-control-prev {
        opacity: 0.5;
    }
    .carousel-control-next {
        opacity: 0.5;
    }
}

.carousel-img-box {
    width: 50%;
    padding: 10px;
    height: 250px; /* fixed box height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* extra parts hidden */
}

.carousel-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* full image visible, no crop */
    display: block;
    border-radius: 10px;
}

  
  @media (min-width: 768px) {
    .carousel-img-box {
      width: 33.33%;
      height: 300px; /* Increased height for desktop */
    }
  }
  
  .custom-btn {
    padding: 12px 25px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
  }
  
  @media (max-width: 767px) {
    /* Hide prev button when it has 'hide-prev' class */
    #servicesCarousel .carousel-control-prev.hide-prev {
      display: none !important;
    }
    /* Hide next button when it has 'hide-next' class */
    #servicesCarousel .carousel-control-next.hide-next {
      display: none !important;
    }
  }
  

.nga_container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
  }
  
  /* ===== About Section Layout ===== */
  .nga_about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
  }
  
  /* ===== Image Block ===== */
  .nga_about-image {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
    border-radius: 8px;
  }
  
  .nga_about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }
  
  .nga_image-caption {
    text-align: center;
    margin-top: 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
  }
  
  .nga_image-caption p {
    margin: 4px 0;
  }
  
  /* ===== Text Block ===== */
  .nga_about-text {
    flex: 1 1 500px;
    font-size: 16px;
    color: #555;
  }
  
  .nga_about-text p {
    margin-bottom: 20px;
  }
  
  /* ===== Section Headings ===== */
  .nga_section-title {
    font-size: 28px;
    font-weight: 700;
    color: #002b5c;
    margin: 40px 0 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .nga_sub-title {
    font-size: 22px;
    font-weight: 600;
    color: #004080;
    margin: 30px 0 15px;
    text-align: center;
  }
  
  /* ===== Registration Block ===== */
  .nga_registration-info {
    margin-top: 30px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-align: center;
    background-color: #f4f8fb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .nga_registration-info p {
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  /* ===== Responsive View ===== */
  @media (max-width: 768px) {
    .nga_about-section {
      flex-direction: column;
    }
  
    .nga_about-image,
    .nga_about-text {
      flex: 1 1 100%;
    }
  
    .nga_section-title,
    .nga_sub-title,
    .nga_registration-info {
      text-align: center;
    }
  }
    /* Service page*/
    /* Container - Used for consistent content width */
        .nga_service-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }

    

    /* New hero image handling */
.nga_service-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nga_service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.nga_service-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nga_service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nga_service-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .nga_service-hero {
        height: 300px;
    }
    .nga_service-hero-content h1 {
        font-size: 2rem;
    }
    .nga_service-hero-content p {
        font-size: 1rem;
    }
}


        .nga_service-hero-content {
            position: relative; /* Ensure content is above overlay */
            z-index: 1;
        }

        .nga_service-hero-content h1 {
            font-size: 3rem; /* Large font size for the main heading */
            margin-bottom: 10px; /* Space below heading */
            font-weight: 700; /* Bold font weight */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Stronger text shadow for better readability on image */
        }

        .nga_service-hero-content p {
            font-size: 1.25rem; /* Subtitle font size */
            margin-bottom: 20px; /* Space below paragraph */
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Stronger text shadow for better readability */
        }

        /* Primary Button Style - Updated to Green Theme */
        .nga_service-btn-primary {
            background-color: #8BC34A; /* Vibrant Green from image */
            color: #fff; /* White text */
            padding: 12px 30px; /* Padding inside the button */
            font-size: 1rem; /* Font size */
            text-decoration: none; /* Remove underline from links */
            border-radius: 25px; /* Highly rounded corners */
            transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition for hover effects */
            display: inline-block; /* Allows padding and margin to be applied correctly */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
        }

        .nga_service-btn-primary:hover {
            background-color: #689F38; /* Darker Green on hover */
            transform: translateY(-2px); /* Slight lift effect on hover */
        }

        /* Services Section - Grid of service items */
        .nga_service-services {
            padding: 60px 0; /* Vertical padding */
            background-color: rgb(255, 255, 255); /* Light grey background similar to the image */
        }

        /* Grid Layout for Service Items */
        .nga_service-services .nga_service-container {
            display: grid; /* Use CSS Grid for the layout */
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
            gap: 100px; /* Space between grid items */
            justify-content: center; /* Center grid items if they don't fill the row */
        }

        /* Individual Service Item Card (now an <a> tag) */
        .nga_service-service-item {
            background-color: white; /* White background for each card (fallback if image fails) */
            border-radius: 10px; /* Rounded corners for the card */
            overflow: hidden; /* Ensures image corners match card corners */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
            position: relative; /* For positioning the label and background image */
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
            display: flex; /* Use flexbox for internal layout */
            flex-direction: column; /* Stack content vertically */
            text-align: center; /* Center align text within the card */
            min-height: 250px; /* Minimum height for cards to accommodate content and background */
            background-size: cover; /* Cover the entire area of the block */
            background-position: center; /* Center the background image */
            color: #fff; /* Default text color for content on image */
            text-decoration: none; /* Remove underline from the link */
        }

        /* New image inside service block */
.nga_service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Remove default overlay */
.nga_service-service-item::before {
    content: none;
}

/* Service block layout update */
.nga_service-service-item {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    min-height: 250px;
}

.nga_service-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-wrapper {
    padding: 20px;
    background: #111;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.content-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    flex-grow: 1;
}


        .nga_service-service-item:hover {
            transform: translateY(-8px); /* Lift effect on hover, adjusted slightly for grid */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
        }

        /* Green Label Style - Added for the new design */
        .service-label {
            position: absolute;
            top: 20px; /* Position from top */
            left: 20px; /* Position from left */
            background-color: #8BC34A; /* Vibrant green color from image */
            color: white;
            padding: 8px 15px;
            border-radius: 5px; /* Slightly rounded corners */
            font-weight: 600;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for the label */
            z-index: 2; /* Ensure label is above overlay */
        }

        /* Content below the image (headings and paragraphs) */
        .nga_service-service-item .content-wrapper {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1; /* Allows content to take available space */
            justify-content: center; /* Center content vertically within the wrapper */
            position: relative; /* For z-index to work */
            z-index: 2; /* Ensure text is above overlay */
            color: white; /* Ensure text is white on dark overlay */
        }

        .nga_service-service-item h2 {
            font-size: 1.5rem; /* Heading font size */
            margin-bottom: 10px; /* Space below heading */
            color: white; /* White heading color for visibility on dark background */
            font-weight: 600; /* Slightly bolder heading */
        }

        .nga_service-service-item p {
            font-size: 1rem; /* Paragraph font size */
            color: #e0e0e0; /* Lighter grey text color for visibility */
            margin-bottom: 15px; /* Space below paragraph */
            flex-grow: 1; /* Allows paragraph to take available space */
        }

        /* CTA Section - Call to action at the bottom */
        .nga_service-cta {
            background-color: #333333; /* Darker tone to match green theme contrast */
            color: white; /* White text */
            padding: 40px 0; /* Vertical padding */
            text-align: center; /* Center align content */
            border-radius: 15px 15px 0 0; /* Slightly rounded top corners */
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
            margin-top: 20px; /* Space above CTA section */
        }

        /* Specific style for primary button within CTA section (different color) */
        .nga_service-cta .nga_service-btn-primary {
            background-color: #FFC107; /* A contrasting yellow/gold for the CTA button */
            color: #333; /* Dark text for contrast */
            padding: 15px 40px; /* Larger padding */
            font-size: 1.2rem; /* Larger font size */
            border-radius: 30px; /* More rounded corners */
        }

        .nga_service-cta .nga_service-btn-primary:hover {
            background-color: #FFA000; /* Darker yellow/gold on hover */
        }

        /* Responsive Design - Media Queries */

        /* For medium screens (tablts) */
        @media (max-width: 991px) {
            .nga_service-services .nga_service-container {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust min width for tablets */
                gap: 20px;
            }
        }

        /* For small screens (mobile phones) */
        @media (max-width: 600px) {
            .nga_service-hero-content h1 {
                font-size: 2rem; /* Smaller heading on mobile */
            }
            .nga_service-hero {
                height: 300px; /* Shorter hero section on mobile */
            }
            .nga_service-services .nga_service-container {
                grid-template-columns: 1fr; /* Single column on mobile */
                gap: 20px;
            }
            .nga_service-service-item {
                min-height: 200px; /* Adjust min height for mobile */
            }
            .nga_service-hero-content p {
                font-size: 1rem; /* Smaller paragraph text on mobile */
            }
            .nga_service-btn-primary {
                padding: 10px 20px; /* Smaller button padding on mobile */
                font-size: 0.9rem; /* Smaller button font size on mobile */
            }
            .nga_service-cta .nga_service-btn-primary {
                padding: 12px 30px;
                font-size: 1rem;
            }
            .service-label {
                top: 15px;
                left: 15px;
                padding: 6px 12px;
                font-size: 0.8em;
            }
        }

            /* Project page */

            /* Container and Section */

            
.pc-filter-buttons {
    display: flex;
    flex-wrap: wrap;  /* line break allow karega */
    justify-content: center;
    gap: 10px;        /* buttons ke beech spacing */
}

.pc-filter-btn {
    padding: 8px 16px;
    border-radius: 25px;
    border: none;
    background: #f2f4f7;
    color: #6c6c6c;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap; /* text break na ho */
}

.pc-wrapper {
  background-color: #f8f9fa;
}

.pc-container {
  max-width: 1140px;
}

/* Header */
.pc-header .pc-main-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #212529;
  margin-bottom: 0.3rem;
}

.pc-header .pc-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Filter Buttons */
.pc-filter-buttons {
  user-select: none;
}

.pc-filter-btn {
  border: none;
  background-color: #e9ecef;
  color: #8BC34A;
  padding: 10px 20px;
  margin: 0 6px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

.pc-filter-btn:hover {
  background-color: #8BC34A;
  color: #fff;
}

.pc-filter-btn.pc-active {
  background-color: #8BC34A;
  color: #fff;
}

/* Portfolio grid */
.pc-portfolio-grid {
  margin-top: 1rem;
}

/* Card */
.pc-portfolio-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgb(0 0 0 / 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.pc-portfolio-card:hover {
  transform: translateY(-6px);
}

/* Image wrapper */
.pc-img-wrapper {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
}

.pc-img-wrapper img {
  width: 100%;
  height: 100%;
}
.pc-category-title {
  text-align: center;
  font-size: 2rem;          /* slightly bigger */
  font-weight: 700;
  color: #212529;           /* dark but subtle */
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid #007bff;  /* bootstrap primary color underline */
  max-width: 300px;         /* restrict width for neat underline */
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}
